From 94bb42de672c028cde96929d5e2e2f9e7f8d8afd Mon Sep 17 00:00:00 2001 From: robertl Date: Wed, 18 Jul 2007 20:09:50 +0000 Subject: [PATCH] Fix ISO_TIME_MS output. --- csv_util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csv_util.c b/csv_util.c index 83577a218..a5d52ffe7 100644 --- a/csv_util.c +++ b/csv_util.c @@ -1481,7 +1481,7 @@ xcsv_waypt_pr(const waypoint *wpt) } else if (strcmp(fmp->key, "ISO_TIME_MS") == 0) { xml_fill_in_time(buff, wpt->creation_time, - MICRO_TO_MILLI(wpt->microseconds), XML_LONG_TIME); + wpt->microseconds, XML_LONG_TIME); } else if (strcmp(fmp->key, "GEOCACHE_LAST_FOUND") == 0) { writebuff(buff, fmp->printfc, time_to_yyyymmdd(wpt->gc_data.last_found)); -- 2.30.2